home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1995 November / EnigmA AMIGA RUN 02 (1995)(G.R. Edizioni)(IT)[!][issue 1995-11][Skylink CD].iso / earcd / util / cli / akcc36.lha / Install_AKCC.script < prev    next >
Text File  |  1995-08-08  |  806b  |  36 lines

  1. ; $VER: Install_AKCC.script V3.6 (8.8.95)
  2. ; © 1993-95 by Andreas R. Kleinert.
  3. ; This is the Installer Script for AKCC
  4.  
  5. (copylib
  6.   (prompt "Installing akcc_gen0.library ...")
  7.   (help @copylib-help)
  8.   (source "libs/akcc_gen0.library")
  9.   (dest "LIBS:")
  10.   (confirm)
  11. )
  12.  
  13. (copyfiles
  14.   (prompt "Installing AKCC ...")
  15.   (help @copyfiles-help)
  16.   (source "")
  17.   (set akcomdir
  18.               (askdir
  19.                      (prompt "Select path to install AKCC commands")
  20.                      (help @askdir-help)
  21.                      (newpath)
  22.                      (default "SYS:AKCC")
  23.               )
  24.   )
  25.   (dest akcomdir)
  26.   (all)
  27.   (confirm)
  28. )
  29.  
  30. (startup "AKCC"
  31.   (prompt "Now modifying your S:User-Startup to use AKCC ...")
  32.   (help @startup-help)
  33.   (command "Assign AKCC: "akcomdir"\n")
  34.   (command "Path AKCC:c ADD\n")
  35. )
  36.